# This is a command list for building pypi packages
python setup.py sdist bdist_wheel

twine check dist/*

# upload to pypi-test
python -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*

# install from test-pypi
pip install --index-url https://test.pypi.org/simple/ transtab==0.0.2c

# upload to pypi
twine upload dist/*
